home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / laptop-mode-tools / modules / battery-level-polling < prev    next >
Text File  |  2009-10-06  |  727b  |  24 lines

  1. #! /bin/sh
  2. # Laptop mode tools module: Battery level polling.
  3. #
  4.  
  5. if [ x$ENABLE_BATTERY_LEVEL_POLLING = x1 ] ; then
  6.     $LM_VERBOSE && echo "Battery level polling is enabled." >> $OUTPUT
  7.     if [ x$ON_AC = x1 ] ; then
  8.         $LM_VERBOSE && echo "On AC, stopping the polling daemon." >> $OUTPUT
  9.  
  10.         # In AC mode we disable the polling daemon.
  11.         killall -q lm-polling-daemon
  12.     else
  13.         if ! pidof lm-polling-daemon ; then
  14.             $LM_VERBOSE && echo "On battery and there was no polling daemon yet, starting the polling daemon." >> $OUTPUT
  15.             
  16.             # If there is no polling daemon, we start one.
  17.             /usr/share/laptop-mode-tools/module-helpers/lm-polling-daemon &
  18.         fi
  19.     fi
  20. else
  21.     $LM_VERBOSE && echo "Battery level polling is disabled." >> $OUTPUT
  22. fi
  23.